home *** CD-ROM | disk | FTP | other *** search
- on enterFrame
- set mouseposition to point(the mouseH, the mouseV)
- if inside(mouseposition, rect(0, 0, 30, 30)) then
- changecursor(3, "CursorUp")
- scrollleft("Corner")
- scrollup("Corner")
- setscrollbox()
- else
- if inside(mouseposition, rect(610, 0, 640, 30)) then
- changecursor(3, "CursorUp")
- scrollright("Corner")
- scrollup("Corner")
- setscrollbox()
- else
- if inside(mouseposition, rect(0, 450, 30, 480)) then
- changecursor(3, "CursorDown")
- scrollleft("Corner")
- scrolldown("Corner")
- setscrollbox()
- else
- if inside(mouseposition, rect(610, 450, 640, 480)) then
- changecursor(3, "CursorDown")
- scrollright("Corner")
- scrolldown("Corner")
- setscrollbox()
- else
- if inside(mouseposition, rect(30, 0, 610, 30)) then
- changecursor(3, "CursorUp")
- scrollup()
- else
- if inside(mouseposition, rect(30, 450, 610, 480)) then
- changecursor(3, "CursorDown")
- scrolldown()
- else
- if inside(mouseposition, rect(0, 30, 30, 450)) then
- changecursor(3, "CursorLeft")
- scrollleft()
- else
- if inside(mouseposition, rect(610, 30, 640, 450)) then
- changecursor(3, "CursorRight")
- scrollright()
- else
- changecursor(3, "Shrink")
- end if
- end if
- end if
- end if
- end if
- end if
- end if
- end if
- end
-
- on exitFrame
- go(the frame)
- end
-
- on changecursor spriteNum, cname
- puppetSprite(spriteNum, 1)
- set the memberNum of sprite spriteNum to the number of member cname
- set the locH of sprite spriteNum to the mouseH
- set the locV of sprite spriteNum to the mouseV
- updateStage()
- end
-
- on mouseDown
- global contentsprite, objnamesprite
- sound stop 2
- puppetSprite(2, 0)
- puppetSprite(3, 0)
- set the visible of sprite 1 to 1
- set the visible of sprite contentsprite to 1
- set the visible of sprite objnamesprite to 1
- set the cursor of sprite 2 to -1
- set the volume of sound 1 to 110
- go("Restart")
- end
-